home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 October / PCWorld_2001-10_cd.bin / Software / Vyzkuste / context / ConTEXTsetup.exe / {app} / Template / HTML Document.ctpl next >
INI File  |  2001-03-22  |  5KB  |  168 lines

  1. [a | align attribute]
  2.  align="|center"
  3.  
  4. [ah | anchor href tag]
  5. <a href="http://|.html" target="_self"></a>
  6.  
  7. [an | anchor name tag]
  8. <a name="|"></a>
  9.  
  10. [btn | Button (generic)]
  11. <input type="button" name="btn|" value="Caption" onClick="JavaScript:">
  12.  
  13. [button | button to execute JavaScript code]
  14. <input type="button" name="btn" value="Run" onClick="JavaScript:|()">
  15.  
  16. [cell | cell tag]
  17. <td align="center" nowrap>|</td>
  18.  
  19. [desc | Meta tag description]
  20. <meta name="description" content="|Page description here...">
  21.  
  22. [f | font tag]
  23. <font face="|arial" size="3" color="#000000"></font>
  24.  
  25. [form | form tag]
  26. <form name="frm" method="GET" action="mailto:|" onSubmit="JavaScript:return validate(this);">
  27.   <input type="text" name="txt" value="">
  28.   <input type="radio" name="rad" value="0">
  29. </form>
  30.  
  31. [fr | Frame]
  32. <frameset frameborder="no" border="0" framespacing="0" rows="50,*">
  33.   <frame name="title" src="title.html" marginheight="0" marginwidth="0"  scrolling="no">
  34.   <frame name="body" src="body.html" marginheight="0" marginwidth="0">
  35. </frameset>
  36. <noframes>
  37.   <body bgcolor="#FFFFFF">
  38.     Your browser doesn't supports frames.
  39.   </body>
  40. </noframes>
  41.  
  42. [h | height attribute]
  43.  height="|"
  44.  
  45. [html | Basic HTML squeleton]
  46. <html>
  47. <head>
  48.   <meta http-equiv="Expires" content="0">
  49.   <title>|Page Title</title>
  50. </head>
  51. <body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  52. </body>
  53. </html>
  54.  
  55. [img | Image]
  56. <img src="|.gif" border="0" vspace="0" hspace="0">
  57.  
  58. [in | generic input tag]
  59. <input type="|" name="MyInput" value="MyValue">
  60.  
  61. [js | JavaScript basic tags]
  62. <script language="JavaScript">
  63. |
  64. </script>
  65.  
  66. [jsrc | Java Script with source]
  67. <script language="JavaScript" src="|.js"></script>
  68.  
  69. [jsval | JavaScript with basic form validation code]
  70. <script language="JavaScript">
  71. var daysXMonth = new Array(0,31,28,31,30,31,30,31,31,30,31,30,31);
  72.  
  73. function validate(|frm) {
  74.     var msg = "";
  75.     if (frm.txt.value.length == 0) msg = msg + "\n- text field required.";
  76.     var i=0;
  77.     var chkd = false;
  78.     while (!chkd && (frm.rad.length > i)) {
  79.         chkd = chkd || frm.rad[i].checked;
  80.         i++;
  81.     }
  82.     if (!chkd) msg = msg + "\n- radio button required.";
  83.     if ((frm.txtYYYY.value.length == 0) || (frm.txtDD.value.length == 0)) msg = msg + "\n- date must be provided."
  84.     else if (isNaN(frm.txtYYYY.value) || isNaN(frm.txtDD.value)) mensaje = mensaje + "\n- date must only use numeric characters."
  85.     else {
  86.         if (!isValidDate(parseInt(frm.YYYY.value),
  87.             frm.selMM.options[frm.selMM.selectedIndex].value,
  88.             parseInt(frm.txtDD.value))) msg = msg + "\n- Date is not valid.";
  89.     }
  90.     if (0 > frm.sel2.selectedIndex) msg = msg + "\n- must select one option.";
  91.     i=0;
  92.     chkd = false;
  93.     while (!chkd && (frm.chk.length > i)) {
  94.         chkd = chkd || frm.chk[i].checked;
  95.         i++;
  96.     }
  97.     if ((frm.txtOthers.value.length != 0) && !frm.chk[frm.chk.length-1].checked) {
  98.         frm.chk[frm.chk.length-1].click();
  99.         chkd = true;
  100.     }
  101.     if (!chkd) msg = msg + "\n- must select one option.";
  102.     if (frm.chk[frm.chk.length-1].checked && (frm.txtOthers.value.length == 0)) msg = msg + "\n- must provide the 'others' options.";
  103.     if (msg != "") {
  104.         msg = "The form can't be sent because have some errors:\n" + msg;
  105.         alert(msg);
  106.         return false;
  107.     }
  108.     else return true;
  109. }
  110.  
  111. function isValidDate(YYYY,MM,DD) {
  112.     if (((YYYY % 400) == 0) || (((YYYY % 100) != 0) && ((YYYY % 4) == 0))) daysXMonth[2] = 29
  113.     else daysXMonth[2] = 28;
  114.     if ((1 > DD) || (DD > daysXMonth[MM])) return false
  115.     else return true;
  116. }
  117. </script>
  118.  
  119. [key | Meta tag for keywords]
  120. <meta name="keywords" content="|,">
  121.  
  122. [nocache | Avoid proxy from cache this page]
  123.   <meta http-equiv="Expires" content="0">
  124.  
  125. [p | paragraph tag]
  126. <p align="justify">|</p>
  127.  
  128. [refresh | Tag for page refresh or redirect]
  129.   <meta http-equiv="Refresh" content="2; url=|">
  130.  
  131. [reset | generic reset button]
  132. <input type="reset" name="|btnReset" value="Reset">
  133.  
  134. [row | row tag]
  135. <tr>
  136.   |
  137. </tr>
  138.  
  139. [sel | select]
  140. <select size="1" name="sel">
  141.   <option value="1">|</option>
  142.   <option value="2"></option>
  143. </select>
  144.  
  145. [style | Style]
  146. <style>
  147.   BODY, DIV, TD, LAYER { font-size:10pt; font-family:arial; }
  148.   A:link, A:visited { color:#000080; text-decoration:none; }
  149.   A:hover, A:active { color:#ff0000; text-decoration:none; }
  150. </style>
  151.  
  152. [submit | generic submit button]
  153. <input type="submit" name="|btnSubmit" value="Submit">
  154.  
  155. [table | HTML table]
  156. <table border="0" cellpadding="0" cellspacing="0">
  157.   <tr>
  158.     <td align="center" valign="middle">|</td>
  159.   </tr>
  160. </table>
  161.  
  162. [text | Text Area]
  163. <textarea name="txt|" wrap="virtual" rows="10" cols="50"></textarea>
  164.  
  165. [w | Width attribute]
  166.  width="|"
  167.  
  168.